home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000196_news@columbia.edu _Mon Jun 3 12:16:37 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id MAA20470 for <kermit.misc@watsun>; Mon, 3 Jun 1996 12:16:36 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id MAA00882 for kermit.misc@watsun; Mon, 3 Jun 1996 12:16:35 -0400 (EDT)
  4. Path: news.columbia.edu!lamont.ldeo.columbia.edu!news.er.usgs.gov!stc06.ctd.ornl.gov!fnnews.fnal.gov!uwm.edu!chi-news.cic.net!news.cais.net!mr.net!winternet.com!ppp-66-63.dialup.winternet.com!JAMESSTU
  5. From: JAMESSTU@winternet.com (JamesSturdevant)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit Takefile/Scripting Problems
  8. Date: Mon, 3 Jun 1996 08:50:43 LOCAL
  9. Organization: StarNet Communications, Inc
  10. Lines: 29
  11. Message-ID: <JAMESSTU.68.000E863F@winternet.com>
  12. References: <31AF35C1.8ED@wheaton.edu> <4oo09j$ls2@apakabar.cc.columbia.edu>
  13. NNTP-Posting-Host: ppp-66-63.dialup.winternet.com
  14. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #4]
  15.  
  16. In article <4oo09j$ls2@apakabar.cc.columbia.edu> fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  17. >From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  18. >Subject: Re: Kermit Takefile/Scripting Problems
  19. >Date: 31 May 1996 23:44:51 GMT
  20.  
  21. >In article <31AF35C1.8ED@wheaton.edu>,
  22. >David B. Malone <dmalone@wheaton.edu> wrote:
  23. >: I would appreciate assistance from a group member concerning a take 
  24. >: file.  I am attempting to run a script that will telnet and autologin to 
  25. >: a unix server.  The script functions, but too well.  It seems to be 
  26. >: looping.  When I run the script (kermit take titus.scr) it telnets to 
  27. >: the server, but will not run the input/output.  However when I close 
  28. >: that initial session it begins another sessions and completes the 
  29. >: autologin procedure.  In other words, it telnets twice, even though only 
  30. >: one reference is made to the machine.  Mscustom and Mskermit.ini make no 
  31. >: mention of the server.
  32. >: 
  33. >Your script probably has a CONNECT command in it.  Take out the CONNECT
  34. >command, or move it down to after all the INPUT/OUTPUT sequences, as explained
  35. >in the script programming chapter of "Using MS-DOS Kermit".
  36.  
  37. >- Frank
  38.  
  39. My guess is that the user's command is TELNET hostname.  The proper command 
  40. should be 
  41.  
  42.  SET PORT TCP hostname
  43.  
  44. JamesS